home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update14.zoo / include / sys / timeb.h
Encoding:
C/C++ Source or Header  |  1992-01-15  |  347 b   |  18 lines

  1. #ifndef _TIMEB_H
  2. #define _TIMEB_H
  3.  
  4. #ifndef _COMPILER_H
  5. #include <compiler.h>
  6. #endif
  7.  
  8. struct timeb {
  9.     long        time;        /* seconds since Jan 1., 1970 */
  10.     short        millitm;    /* milliseconds since "time" */
  11.     short        timezone;    /* minutes west of GMT */
  12.     short        dstflag;    /* if time zone can have DST */
  13. };
  14.  
  15. __EXTERN int    ftime    __PROTO((struct timeb *));
  16.  
  17. #endif
  18.